 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;

}
body {
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    background: #f9f8f6;
    color: #181818;
    font-family: 'Playfair Display', serif;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.btn {
    display: inline-block;
    background: red;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #e44a4a;
}

/* Navbar Styles */
.navbar {
    background:#181818;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #eafcff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #eafcff;
    font-weight: 500;
}

.nav-links a:hover {
    color: red;
}

.hamburger {
    display: none;
    cursor: pointer;
    color: white;
}

.hamburger.active i {
    transform: rotate(90deg);
}

.hamburger i {
    transition: transform 0.3s ease;
}

/*home section*/

.hero {
    background: url(wed7.jpeg);
    background-size: cover;
    background-position: center;
    height: 95vh;
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 60px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 60vh;
    padding-top: 60px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Services Section */
.services {
    padding: 80px 0;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.services.visible {
    opacity: 1;
    transform: translateY(0);
}

.services .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
}

.images-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.services .container img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.services-left {
    flex: 1 1 300px;
    min-width: 250px;
    margin-right: 30px;
    text-align: left;
}

.services-left h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
}
.services-left h3{
    text-align: center;
    font-size: x-large;
}
.services-left p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

/* Works Section */
.Works {
    padding: 80px 0;
    background: #f8f9fa;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.Works.visible {
    opacity: 1;
    transform: translateY(0);
}

.Works h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
}

.work-img {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.work-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-img img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
/* Story section*/
.story {
    padding: 80px 0;
    background: #f8f9fa;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.story.visible {
    opacity: 1;
    transform: translateY(0);
}

.story h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
}

.story p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}
/* Portfolio section */
.Portfolio {
    padding: 70px 0;
    background: #f9f9f9;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.Portfolio.visible {
    opacity: 1;
    transform: translateY(0);
}

.Portfolio h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.Portfolio .Portfolio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background: white;
    padding: 0;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    overflow: hidden;
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

.portfolio-card img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    display: block;
}

.portfolio-card h3 {
    margin: 20px 20px 10px 20px;
    font-size: 1.5rem;
    color: #333;
}

.portfolio-card p {
    color: #0b0101;
    line-height: 1.6;
    margin: 0 20px 20px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    padding-top: 1vh;
}

/* Responsive Design - Media Queries */
/* Mobile Styles */
@media screen and (max-width: 480px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }
    .navbar {
        padding: 10px 0;
    }
    .navbar .container {
        padding: 0 20px;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .logo {
        font-size: 1rem;
        flex: 1;
    }
    .hamburger {
        display: block;
        color: white;
        font-size: 1.5rem;
        margin-left: auto;
        margin-right: 2vh;
        z-index: 1001;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #181818;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }
    .nav-links a {
        padding: 10px 20px;
        display: block;
        font-size: 1.1rem;
    }
    .hero {
        height: 100vh;
        padding-top: 50px;
    }
    .hero-content {
        padding-top: 50px;
        min-height: 50vh;
    }
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .services {
        padding: 50px 0;
    }
    .services .container {
        flex-direction: column;
        gap: 20px;
    }
    .images-container {
        gap: 10px;
    }
    .services .container img {
        width: 120px;
    }
    .services-left {
        margin-right: 0;
        text-align: center;
    }
    .services-left h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    .services-left h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    .services-left p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .Works {
        padding: 50px 0;
    }
    .Works h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    .work-img {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .work-img img {
        height: 200px;
    }
    .story {
        padding: 50px 0;
    }
    .story h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    .story p {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 100%;
        padding: 0 10px;
    }
    .Portfolio {
        padding: 50px 0;
    }
    .Portfolio h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .Portfolio .Portfolio {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .portfolio-card {
        padding: 0;
    }
    .portfolio-card img {
        height: 300px;
    }
    .portfolio-card h3 {
        font-size: 1.3rem;
        margin: 15px 15px 8px 15px;
    }
    .portfolio-card p {
        font-size: 0.85rem;
        margin: 0 15px 15px 15px;
    }
    .footer {
        padding: 20px 0;
    }
    
    .footer p {
        font-size: 0.9rem;
    }
}
/* Footer Section */
.footer {
    background: #181818;
    color: #eafcff;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #333;
}
.footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer p {
    margin: 0;
    font-size: 1rem;
    color: #eafcff;
    font-weight: 500;
}
.about {
    padding: 80px 0 40px 0;
    background: #f9f8f6;
}
.about .container {
    margin: 0 auto;
    padding-top: 4vh;
}
.about h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #000000;
    letter-spacing: 1px;
    font-weight: bold;
}
.about h2 {
    padding: 20px 30px 10px 30px;
    font-size: 2rem;
    color: #000000;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
}
.about p {
    padding: 10px 30px;
    font-size: 1.1rem;
    color: #333;
    line-height: 2;
    text-align: justify;
    font-weight: 500;
}
@media (max-width: 600px) {
    .about .container {
        padding: 20px 10px;
    }
    .about h1 {
        font-size: 2rem;
    }
    .about h2 {
        padding: 15px 10px 8px 10px;
        font-size: 1.3rem;
    }
    .about p {
        padding: 8px 10px;
        font-size: 1rem;
    }
}
.about .container-img {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(8, 1fr);
    gap: 8px;
    height: 600px;
    margin: 30px auto;
    max-width: 1100px;
}
.about .container-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}
.about .container-img img:nth-child(1) {
    grid-column: 1 / span 3;
    grid-row: 1 / span 4;
}
.about .container-img img:nth-child(2) {
    grid-column: 4 / span 3;
    grid-row: 3 / span 4;
}
.about .container-img img:nth-child(3) {
    grid-column: 7 / span 3;
    grid-row: 1 / span 4;
}
.about .container-img img:nth-child(4) {
    grid-column: 10 / span 3;
    grid-row: 3 / span 4;
}
/* Contact Page */
.contact {
    padding: 120px 0 80px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.contact.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
    font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: red;
}

.form-group button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background: red;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.form-group button:hover {
    background: #c00;
}

.social-links {
    text-align: center;
    margin-top: 50px;
    padding-bottom: 50px;
}

.social-icon {
    display: inline-block;
    margin: 0 20px;
    font-size: 2.5rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon.whatsapp {
    color: #25D366;
}

.social-icon.instagram {
    color: #E4405F;
}

/* Responsive Styles for Contact Page */
@media (max-width: 768px) {
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 80px 0 40px 0;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-form h2 {
        font-size: 2rem;
    }

    .social-icon {
        font-size: 2rem;
        margin: 0 15px;
    }
}
